Finding ID | Version | Rule ID | IA Controls | Severity |
---|---|---|---|---|
V-81633 | AOSX-13-000565 | SV-96347r1_rule | Medium |
Description |
---|
Administrators must never log in directly as root. To assure individual accountability and prevent unauthorized access, logging in as root over a remote connection must be disabled. Administrators should only run commands as root after first authenticating with their individual user names and passwords. |
STIG | Date |
---|---|
Apple OS X 10.13 Security Technical Implementation Guide | 2020-05-29 |
Check Text ( C-81409r1_chk ) |
---|
To check if SSH has root logins enabled, run the following command: /usr/bin/sudo /usr/bin/grep ^PermitRootLogin /etc/ssh/sshd_config If there is no result, or the result is set to "yes", this is a finding. |
Fix Text (F-88481r1_fix) |
---|
To ensure that "PermitRootLogin" is disabled by sshd, run the following command: /usr/bin/sudo /usr/bin/sed -i.bak 's/^[\#]*PermitRootLogin.*/PermitRootLogin no/' /etc/ssh/sshd_config |